:root {
  --sk-size: 40px;
  --sk-color: #172C87;
}
#load {
  display: block;
  height: 100%;
  background-color: #ffffff;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 9901;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
}
#load.loader-removed {
  opacity: 0;
  visibility: hidden;
}
#load .load-wrap {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-flow: column wrap;
}
.sk-pulse {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@keyframes sk-pulse {
  0% {
    width: calc(var(--sk-size) * 1.3);
    height: calc(var(--sk-size) * 1.3);
    transform: scale(0);
  }
  100% {
    width: calc(var(--sk-size) * 1.3);
    height: calc(var(--sk-size) * 1.3);
    transform: scale(1);
    opacity: 0;
  }
}
.sk-flow {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  display: flex;
  justify-content: space-between;
}
.sk-flow-dot {
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 50%;
  animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both;
}
.sk-flow-dot:nth-child(1) {
  animation-delay: -0.3s;
}
.sk-flow-dot:nth-child(2) {
  animation-delay: -0.15s;
}
@keyframes sk-flow {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@media only screen and (min-width: 1200px) {
  .header.container .row-wrap .nav-left {
    padding-right: 0;
  }
  .header.container .row-wrap .nav-right {
    padding-left: 0;
  }
}
.header {
  background-color: #fff;
}
.header .row-wrap {
  height: 100%;
  height: 50px;
  opacity: 1;
  transition: opacity 0.3s 0.7s ease-in;
}
.header .logo {
  height: 100%;
}
.header .logo a {
  display: block;
  height: 50px;
  line-height: 50px;
}
.header .logo a img {
  margin-top: 8px;
}
.header .nav_list {
  display: inline-flex;
}
.header .nav_list .hhhs-item-10 {
  padding-left: 0;
}
.header .nav_list a {
  font-family: "bahnschrift";
  font-style: normal;
  font-weight: 500;
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.15s;
  height: 50px;
  line-height: 50px;
  vertical-align: baseline;
  display: inline-block;
}
.header .nav_list .nav_list_item {
  margin: 0 30px;
  height: 100%;
  color: #fff;
  position: relative;
}
.header .nav_list .nav_list_item:hover {
  /* border-bottom: 2px solid #fff; */
}
.header .nav_list .nav_list_item:hover::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}
.header .nav_list .nav_list_item:last-child {
  margin-left: 0;
}
.header .nav_list .nav_list_item.nav-other::after {
  display: none;
}
.header .nav_list .nav_list_item.nav-other .login {
  position: relative;
}
.header .nav_list .nav_list_item.nav-other .login .login-box {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 50px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: none;
}
.header .nav_list .nav_list_item.nav-other .login .login-box span {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: -20px;
}
.header .nav_list .nav_list_item.nav-other .login .login-box span i {
  border-width: 10px;
  border-style: solid dashed dashed;
  border-color: transparent transparent #e2e2e2;
  position: absolute;
  right: 0;
  top: 0;
}
.header .nav_list .nav_list_item.nav-other .login .login-box span b {
  border-width: 10px;
  border-style: solid dashed dashed;
  border-color: transparent transparent #fff;
  position: absolute;
  right: 0;
  top: 1px;
}
.header .nav_list .nav_list_item.nav-other .login .login-box p {
  width: 200px;
  line-height: 30px;
  text-align: center;
  margin: 0;
  padding: 10px;
}
.header .nav_list .nav_list_item.nav-other .login .login-box p a.lang-item {
  line-height: 30px;
  height: 30px;
}
.header .nav_list .nav_list_item.nav-other .login .login-box p a.lang-item:hover {
  border-bottom: 2px solid #000;
}
.header .nav_list .nav_list_item.nav-other .login.on .login-box {
  display: block;
}
.header .nav_list .cascade {
  padding: 0 30px;
  color: #000000;
  position: relative;
}
.header .nav_list .cascade .cascade-list {
  display: inline-block;
  text-transform: uppercase;
}
.header .nav_list .cascade .cascade-list::after {
  content: "\f0dd";
  font-family: FontAwesome;
  font-size: 12px;
  position: absolute;
  top: -2px;
  padding-left: 2px;
  padding-right: 4px;
}
.header .nav_list .cascade .cascade-list:hover {
  /* border-bottom: 2px solid #fff; */
  color: #000000;
}
.header .nav_list .cascade:hover > .sub-menu {
  display: block;
}
.header .nav_list .cascade .sub-menu {
  display: none;
  position: absolute;
  z-index: 100;
  top: 50px;
  background-color: #fff;
  padding: 10px 0;
  width: 160px;
}
.header .nav_list .cascade .sub-menu:hover {
  display: block;
}
.header .nav_list .cascade .sub-menu .menu-item {
  height: 50px;
  line-height: 50px;
  position: relative;
}
.header .nav_list .cascade .sub-menu .menu-item a {
  display: block;
  white-space: nowrap;
  padding-right: 15px;
}
.header .nav_list .cascade .sub-menu .menu-item a:hover {
  color: #000;
}
.header .nav_list .cascade .sub-menu2 {
  display: none;
  background-color: #fff;
  right: 210px;
  top: -15px;
}
.header .nav_list .cascade .menu-item:hover .sub-menu2 {
  display: block;
}
/* Site links */
.site-links {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 50px;
  line-height: 50px;
}
.site-links .search_button {
  position: relative;
  background: none;
  color: #172C87;
  font-size: 17px;
  font-weight: 400;
  padding: 0 1px;
  min-width: 16px;
  border: none;
  box-shadow: none;
  transition: color 0.15s;
}
.site-links .search_button:hover {
  color: #000000;
  cursor: pointer;
}
.site-links .search_button:after {
  display: none;
}
.burger-wrap {
  position: relative;
  margin-left: auto;
  padding: 15px 0 15px 15px;
  display: flex;
  float: right;
  justify-content: space-between;
}
.burger-wrap .burger {
  width: 28px;
  height: 16px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.burger-wrap .burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #172C87;
  border-radius: 9px;
  opacity: 1;
  right: 0;
  transform: rotate(0deg);
  transition: top 0.25s ease-in-out, width 0.25s ease-in-out, right 0.25s ease-in-out, transform 0.25s ease-in-out, background 0s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.burger-wrap .burger span:nth-child(1) {
  top: 0;
}
.burger-wrap .burger span:nth-child(2) {
  top: 8px;
}
.burger-wrap .burger span:nth-child(3) {
  top: 8px;
}
.burger-wrap .burger span:nth-child(4) {
  top: 16px;
}
.burger-wrap .burger.open span {
  background: red;
}
.burger-wrap .burger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  right: 50%;
}
.burger-wrap .burger.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burger-wrap .burger.open span:nth-child(3) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burger-wrap .burger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  right: 50%;
}
.burger-wrap .burger.main-menu-link {
  align-items: flex-start;
}
/* Header search */
.header-search {
  position: absolute;
  background-color: #000;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 0;
  font-size: 22px;
  z-index: 3;
  visibility: hidden;
  transition: visibility 0s linear 0.7s;
}
.header-search .container {
  position: relative;
}
.header-search .searchform-wrapper {
  width: 100%;
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  -webkit-backface-visibility: hidden;
}
.header-search .search-input {
  height: 50px;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font-weight: 300;
  letter-spacing: 0.02em;
  border-radius: 0;
  color: #bcbebf;
}
.header-search .toggle-header-search {
  width: 30px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -12px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  opacity: 0;
}
.header-search .toggle-header-search span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #667;
  top: 10px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-search .toggle-header-search span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bg-color {
  top: 0;
  z-index: 999;
  width: 100%;
  position: relative;
  height: 50px;
  background-color: #fff;
}
.bg-color .fill-absolute {
  position: fixed;
  background-color: #fff;
  top: 0;
  width: 100%;
}
.header-search-active .header .row-wrap {
  height: 50px;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.header-search-active .header-search {
  visibility: visible;
  transition-delay: 0s;
}
.header-search-active .header-search .searchform-wrapper {
  opacity: 1;
  transition: opacity 0.7s ease-in;
}
.header-search-active .toggle-header-search {
  opacity: 1;
  transition: opacity 0.9s ease 0.3s;
}
.visible-xs-9,
.visible-sm-9 {
  width: 75%;
  float: right;
}
.visible-xs-1,
.visible-sm-1 {
  width: 8%;
  float: left;
}
.visible-xs-2 .visible-sm-2 {
  float: right;
  width: 16%;
  right: 0;
}
.site-links.justify-center {
  justify-content: center;
}
.visible-xs-9 .logo a,
.visible-sm-9 .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
}
.banner--header .banner-img {
  width: 100%;
}
.banner--header .banner-img .img {
  object-fit: cover;
  width: 100%;
  max-height: 660px;
  min-height: 500px;
}
@media only screen and (max-width: 992px) {
  #mobile-menu-bg,
  #mobile-site-navigation {
    display: block;
  }
}
#mobile-menu-bg {
  background-color: transparent;
  visibility: hidden;
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  display: none;
  right: 0;
  -webkit-transition: background-color 0.1s ease-in 0.2s, visibility 0.1s linear 0.3s;
  transition: background-color 0.1s ease-in 0.1s, visibility 0.1s linear 0.3s;
  z-index: 99998;
}
#mobile-menu-bg.mobile-menu-active {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.7);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition: background-color 0.1s ease-in 0.1s, visibility 0.1s linear 0.3s;
}
#mobile-site-navigation {
  background: #fff;
  display: none;
  position: absolute;
  width: 80%;
  min-width: 140px;
  max-width: 440px;
  height: 100%;
  top: 0;
  left: 0;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  z-index: 99999;
}
#mobile-site-navigation.mobile-menu-active {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}
#mobile-site-navigation .mobile-menu-header {
  width: 100%;
  display: block;
  height: 160px;
  border-bottom: 1px solid rgba(100, 100, 100, 0.1);
  margin-bottom: 20px;
  background: #111;
  background-color: #172C87;
}
#mobile-site-navigation .mobile-menu-header i {
  color: #fff;
  font-size: 24px;
  margin-left: 25px;
  margin-top: 120px;
  float: left;
  cursor: pointer;
}
#mobile-site-navigation .mobile-menu-heading {
  display: inline-block;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  margin-top: 110px;
  margin-right: 30px;
}
#mobile-site-navigation ul.menu li {
  position: relative;
}
#mobile-site-navigation ul.menu li > a {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  padding: 16px 30px 16px 10px;
  display: block;
  color: #222;
  position: relative;
  letter-spacing: 0.02em;
}
#mobile-site-navigation ul li.menu-item-has-children > a {
  width: 50%;
  width: calc(100% - 200px);
}
#mobile-site-navigation ul li.menu-item-has-children > span {
  display: block;
  padding: 10px;
  position: absolute;
  top: 6px;
  left: 18px;
  cursor: pointer;
}
#mobile-site-navigation ul li.menu-item-has-children > span:before {
  content: "\f054";
  color: #222;
  font-family: FontAwesome;
  font-size: 11px;
  line-height: 12px;
  padding-right: 1px;
  text-align: center;
  display: block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
#mobile-site-navigation ul li.menu-item-has-children.submenu-open > a {
  font-weight: 500;
}
#mobile-site-navigation ul li.menu-item-has-children.submenu-open > span:before {
  content: "\f078";
}
#mobile-site-navigation ul li.menu-item-has-children ul {
  margin-right: 30px;
  border-right: 1px solid #eee;
  overflow: hidden;
  max-height: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
#mobile-site-navigation ul li.menu-item-has-children.submenu-open > ul {
  max-height: 1000px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.overflow1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.overflow2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.overflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
footer {
  padding: 80px 0 40px 0;
  background: #000000;
}
footer .row {
  padding-bottom: 20px;
  margin-right: 0;
  margin-left: 0;
}
footer .row > div {
  padding-right: 0;
  padding-left: 0;
}
footer > div {
  color: #8b8f98;
}
footer > div .title {
  padding-top: 0 !important;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 25px;
}
footer > div a {
  color: #8b8f98;
}
footer .left > img {
  width: 100px;
  margin-bottom: 20px;
}
footer .left .img_list img {
  width: 24px;
}
footer .one .title img {
  width: 100px;
  margin-bottom: 20px;
  height: auto;
}
footer .one .link-icons a img {
  width: 24px;
  height: auto;
}
footer .one,
footer .two,
footer .three {
  margin-top: 20px;
}
footer .one > div a,
footer .two > div a,
footer .three > div a {
  text-align: right;
}
footer .item-height {
  font-size: 16px;
  padding: 5px 0;
}
@media (max-width: 992px) {
  footer .title {
    text-align: right;
  }
  footer .two > div {
    text-align: right;
  }
  footer .three > div {
    text-align: right;
  }
}
footer .desc {
  padding: 20px 0;
  color: #737373;
  text-align: center;
  font-size: 12px;
  position: relative;
  border-top: 0.5px solid #737373;
}
footer .desc > p {
  text-align: right;
}
footer .desc a {
  color: #737373;
}
footer a:hover {
  color: #04F661 !important;
}
/* Scroll to top button */
.scrollToTop {
  width: 38px;
  height: 38px;
  line-height: 36px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  z-index: 9999;
  bottom: -45px;
  left: 15px;
  background: #172C87;
  border-radius: 38px;
  overflow: hidden;
  transition: bottom 0.4s cubic-bezier(0.55, 0, 0.1, 1), transform 0.3s cubic-bezier(0.175, 1.275, 0.8, 1);
}
.scrollToTop:hover {
  color: #fff;
  transform: scale(1.1);
}
.scrollToTop.scrollactive {
  bottom: 15px;
}
.header.container {
  max-width: 1580px;
}
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Microsoft Yahei", "simsun", "arial", "tahoma";
  color: #333;
}
@media (min-width: 1352px) {
  .custom-container {
    width: 1352px !important;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .row {
    margin-right: 0;
    margin-left: 0;
  }
}
/* 跟字体大小 */
/* 轮播图区域的样式 */
.swiper {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1200px) {
  .swiper {
    height: 100vh;
  }
}
.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
}
.swiper .slide-innner {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper .swiper-pagination-bullet-active {
  background-color: #ffffff !important;
}
.swiper .swiper-pagination {
  bottom: 8% !important;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #fff;
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-button-prev {
  right: 3% !important;
}
.swiper .swiper-button-next {
  left: 3% !important;
}
.discover--bg .discover {
  padding-bottom: 60px;
  padding-top: 70px;
}
.discover--bg .discover .discover--goods {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.discover--bg .discover .discover--goods.discover--right {
  margin-top: 1.92em;
}
.discover--bg .discover .discover--goods.row {
  margin-left: auto;
}
.discover--bg .discover .discover--goods .img-wrap.active:before {
  opacity: 1 !important;
}
.discover--bg .discover .discover--goods .img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(-45deg, #000, transparent 80%, transparent);
  z-index: 3;
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.55, 0, 0.1, 1);
}
.discover--bg .discover .phoneinfo {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  box-sizing: border-box;
  height: 50px;
  width: 100%;
}
.discover--bg .discover .phoneinfot_1,
.discover--bg .discover .phoneinfot_2 {
  flex-direction: column-reverse;
}
.discover--bg .discover .phoneinfo .name {
  font-family: "bahnschrift";
  font-style: normal;
  color: #000;
}
.discover--bg .discover .phoneinfo .name {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
}
.discover--bg .discover .visible-md-11.visible-sm-12 {
  padding-bottom: 50px;
}
.discover--bg .discover .visible-md-11.visible-sm-12 .discover--goods.discover--right {
  margin-top: 0px;
}
@media only screen and (min-width: 1220px) {
  .discover--bg .discover .smp-pics {
    display: flex;
  }
  .discover--bg .discover .discover--goods--slide {
    width: 100%;
  }
  .discover--bg .discover .discover--goods--slide .img-wrap img {
    height: 773px;
    object-fit: cover;
    max-width: 100%;
  }
  .discover--bg .discover .discover--child {
    padding: 0 17px;
    margin-bottom: 30px;
  }
  .discover--bg .discover .discover--child img {
    height: 346px;
    max-width: 100%;
    object-fit: cover;
  }
}
@media only screen and (max-width: 1200px) {
  .discover--bg .discover .discover--goods--slide img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .discover--bg .discover .discover--child {
    margin-bottom: 30px;
  }
  .discover--bg .discover .discover--goods img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.commontitle {
  width: 100%;
  padding-bottom: 32px;
  align-items: center;
  position: relative;
  justify-content: space-between;
  display: flex;
  padding-bottom: 20px;
  margin: 0 auto 24px;
}
.commontitle.commontitle-mt {
  margin-top: 100px;
}
.commontitle .title {
  font-family: "bahnschrift";
  font-weight: 500;
  line-height: 1.7;
  font-size: 20px;
  transform: translateY(25%);
}
.commontitle .cline {
  width: 100%;
  border: none;
  height: 2px;
  position: absolute;
  right: 0;
  margin: 0;
  bottom: 0;
  translate: all 10s;
  background-color: #162c87 !important;
}
.commontitle .linkt_a:before,
.phoneinfo .linkt_a:before {
  content: ">";
  color: #000;
  display: inline-block;
  position: relative;
  transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
}
.commontitle .linkt_a:after,
.phoneinfo .linkt_a:after {
  content: ">";
  display: inline-block;
  position: absolute;
  right: 0;
  opacity: 0;
  transform-origin: right center;
  transform: translate(50%);
  transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  color: #00f661;
}
.commontitle .linkt,
.phoneinfo .linkt {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
  color: #000;
  font-size: 18px;
  font-family: "bahnschrift";
}
.commontitle .linkt_a:before,
.phoneinfo .linkt_a:before {
  content: ">";
  color: #000;
  display: inline-block;
  position: relative;
  transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
}
.commontitle .linkt_a:after,
.phoneinfo .linkt_a:after {
  content: ">";
  display: inline-block;
  position: absolute;
  right: 0;
  opacity: 0;
  transform-origin: right center;
  transform: translate(50%);
  transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  color: #00f661;
}
.power {
  background-color: #fff;
  font-family: "bahnschrift";
  font-style: normal;
  font-weight: 400;
  color: #000;
  margin-bottom: 90px;
}
.power .monster {
  margin-top: 50%;
  transform: translate3d(0, -50%, 0);
}
.power .p1,
.power .p2 {
  margin-top: 90px;
}
.power .p1 > div img,
.power .p2 > div img {
  height: 650px;
  max-width: 100%;
}
.power .p3 > div {
  padding-left: 0;
}
.power .p3 > div img {
  max-width: 80%;
  max-height: 552px;
  object-fit: cover;
}
.power img {
  border-radius: 4px;
  vertical-align: middle;
  border-style: none;
  object-fit: contain;
}
.power .p2 {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .power .p2 .monster {
    margin-right: 11em;
  }
}
.p1 .note,
.p2 .note,
.tvx .note {
  font-size: 20px;
  line-height: 28px;
}
.p1 h3,
.p2 h3,
.tvx h3 {
  margin-top: 24px;
  font-size: 40px;
  line-height: 40px;
}
.p1 h6,
.p2 h6,
.tvx h6 {
  font-family: "bahnschrift";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin-top: 24px;
}
.p1 a,
.p2 a,
.tvx a {
  margin-top: 32px;
  width: 200px;
  font-family: "bahnschrift";
  font-style: normal;
  font-weight: 500;
  display: inline-block;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 60px;
  background-color: #000;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: all 0.1s;
  border: 2px solid #fff;
}
.p1 a:hover,
.p2 a:hover,
.tvx a:hover {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
}
.p3.row {
  background: #f3f3f3;
  border-radius: 10px;
}
.p3.row .monster {
  padding-right: 112px;
  margin-top: 30%;
  transform: translate3d(0, 0, 0);
}
.p3.row .hhhs-p3-8 {
  text-align: left;
}
.exhibition {
  padding: 5.2168% 15px;
  background-color: #fff;
}
.exhibition .exhibition-top {
  width: 100%;
}
.exhibition img {
  width: 100%;
}
.news-goods {
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  color: #000;
  padding-top: 70px;
  padding-bottom: 110px;
}
.news-goods .goods--pb {
  padding-bottom: 50px;
}
.news-goods h3 {
  font-size: 24px;
  margin-top: 16px;
  font-style: normal;
  line-height: 1.5;
  min-height: 48px;
  color: #000;
  margin-top: 12px;
  font-weight: 700;
}
.news-goods a.read-more {
  border: 2px solid #000;
  opacity: 1;
  margin-top: 16px;
  border-radius: 4px;
  display: inline-block;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.1s;
  color: #000;
  background-color: #fff;
  line-height: 36px;
}
.news-goods a.read-more:hover {
  border: 2px solid #000;
  color: #fff;
  background-color: #000;
  opacity: 1;
}
.news-goods a.read-more p {
  font-style: normal;
  line-height: 24px;
  color: #000;
  margin-top: 12px;
  font-size: 16px;
}
.news-goods .imghead {
  overflow: hidden;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .news-goods .imghead .img_responsive {
    object-fit: cover;
    height: 294px;
  }
}
@media (min-width: 1200px) {
  .news-goods .imghead .img_responsive {
    object-fit: cover;
    height: 485px;
  }
}
.news-goods .newinfo .el_mobile {
  margin-top: 2em;
  font-size: 18px;
  height: 90px;
  line-height: 1.7;
}
.news-goods .newinfo .date {
  text-align: right;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.news-goods .newinfo .date .note-img {
  margin-right: 8px;
}
.news-goods .newinfo .read-more {
  border: 2px solid #000;
  opacity: 1;
  margin-top: 42px;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.1s;
  background-color: #fff;
  white-space: nowrap;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 28px;
  text-align: center;
  color: #212121;
  padding: 13px 19px;
}
.news-goods .newinfo .read-more:hover {
  border: 2px solid #000;
  color: #fff;
  background-color: #000;
  opacity: 1;
}
.double-product-wrap {
  margin: 0 -15px;
}
.double-product-wrap .double-product-item .product-item {
  display: block;
  position: relative;
}
.double-product-wrap .double-product-item .product-item:hover i.show-icon {
  opacity: 1;
}
@media (min-width: 992px) {
  .double-product-wrap .double-product-item .product-item img {
    object-fit: cover;
    height: 294px;
  }
}
@media (min-width: 1200px) {
  .double-product-wrap .double-product-item .product-item img {
    object-fit: cover;
    height: 454px;
  }
}
.double-product-wrap .double-product-item .product-item img {
  position: relative;
  z-index: -1;
  object-fit: cover;
  border-radius: 8px;
}
.double-product-wrap .double-product-item .product-item .show-icon {
  color: #dd0000;
  font-size: 60px;
  position: absolute;
  right: 50%;
  top: 50%;
  opacity: 0;
  transition: opacity 0.6s;
  transform: translate3d(50%, -50%, 0);
}
.double-product-wrap .double-product-item .product-item h4 {
  font-family: "bahnschrift";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #fff;
  position: absolute;
  bottom: 30px;
  right: 32px;
}
.vt {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  overflow: hidden;
  box-sizing: border-box;
}
.lim {
  width: 800px;
  height: 550px;
  background-color: black;
  position: absolute;
  right: 50%;
  top: -60%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  z-index: 9;
  border-radius: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.lim.active {
  top: 50%;
}
.bd {
  height: 60px;
  width: 100%;
  background-color: #ffffff;
  line-height: 60px;
  padding: 0 20px;
}
.zd {
  float: right;
  font-size: 18px;
  color: #333333;
}
.zj {
  float: left;
  padding-top: 1px;
  padding-left: 3px;
  cursor: pointer;
}
.zj a {
  color: #162c87;
}
.active {
  color: #162c87;
}
.jt {
  float: left;
  padding-left: 10px;
}
.yd {
  float: left;
  padding: 0 15px;
  cursor: pointer;
}
/* 封面图 */
.cover-img .company_introduce {
  width: 100%;
}
.cover-img .company_introduce img {
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .cover-img .company_introduce {
    height: 900px;
  }
  .cover-img .company_introduce img {
    height: 900px;
  }
}
